home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_08 / 8n08044a < prev    next >
Encoding:
Text File  |  1995-11-01  |  296 b   |  20 lines

  1.  
  2. critical foo(int type)
  3. {
  4. switch(type)
  5.   {
  6.   case 1:
  7.   /*** Do work for type code 1 ***/
  8.   return(SUCCESS);
  9.  
  10.   case 2:
  11.   /*** Do work for type code 2 ***/
  12.   return(SUCCESS);
  13.  
  14.   default:
  15.   if(type > 5) return(ERROR);
  16.   /*** Do default work         ***/
  17.   return(SUCCESS);
  18.   }
  19. }
  20.